home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 805 b | 23 lines |
- #
- # Imakefile for madness, by Ron Record
- #
- # Comment out the next line if you don't want/need the delay functionality
- # (e.g. your system isn't fast enough to make inserting a nap() useful)
- DELAY = -DUSE_DELAY
- # If you are using the delay functionality (above line uncommented), then
- # comment out the next line if you want to use nap() rather than itimers
- SLEEP = -DHAS_ITIMER
- # and uncomment the next line if you're using nap() on an SCO system
- # NAPLIB = -lx
- DEPLIBS = $(DEPXLIB)
- LOCAL_LIBRARIES = ../lib/libXrr.a XmClientLibs
- SYS_LIBRARIES = -lm $(NAPLIB)
- INCLUDES = -I.
- CFLAGS = -O $(INCLUDES) $(SLEEP) $(DELAY)
- SRCS = madness.c
- OBJS = madness.o
-
- ComplexProgramTarget(madness)
-
- InstallProgram(madness, $DESTDIR/usr/bin/X11)
-